simple-builder
A simple implementation of the builder pattern for arbitrary Rust structs.
This package could easily be called "yet-another-builder" (YAB for short), but it fills a niche for those looking less for features in a builder implementation, and more for ease of use. In particular this implementation is for you if you have structs with several required fields and many optional ones. Examples of this might be query parameters for endpoints with required fields like a nonce and id, then many optional filtering parameters like start and end dates, price ranges, product types, etc. This macro was purpose built for this very use case.
Example: Simple Use Case
use Builder;
// Debug, PartialEq, Eq are only for assertions